View Javadoc

1   // NullDelegates.java, created Mon Dec 23 20:00:01 2002 by mcmartin
2   // Copyright (C) 2001-3 Michael Martin <mcmartin@stanford.edu>
3   // Licensed under the terms of the GNU LGPL; see COPYING for details.
4   package joeq.Compiler.Quad;
5   
6   import joeq.Interpreter.QuadInterpreter;
7   
8   /***
9    * @author Michael Martin <mcmartin@stanford.edu>
10   * @version $Id: NullDelegates.java 1456 2004-03-09 22:01:46Z jwhaley $
11   */
12  class NullDelegates {
13      static class Op implements joeq.Compiler.Quad.Operator.Delegate {
14          public void interpretGetThreadBlock(Operator.Special op, Quad q, QuadInterpreter s) { }
15          public void interpretSetThreadBlock(Operator.Special op, Quad q, QuadInterpreter s) { }
16          public void interpretMonitorEnter(Operator.Monitor op, Quad q, QuadInterpreter s) { }
17          public void interpretMonitorExit(Operator.Monitor op, Quad q, QuadInterpreter s) { }
18      }
19  }